fetch cycle - перевод на Английский
Diclib.com
Словарь онлайн

fetch cycle - перевод на Английский

BASIC OPERATION CYCLE OF A COMPUTER
Fetch execute cycle; Fetch-execute cycle; Fetch-decode-execute cycle; Execute cycle; Computer cycle; Computer cycles; FE Cycle; CPU cycle; Fetch and execution cycle; Fetch and execute cycle; Machine cycle; I/E time; Processor cycle; Instruction fetching; Instruction fetch; Opcode fetch; Computing cycle
  • Current instruction register]]
}}

fetch cycle      

общая лексика

цикл выборки

первая стадия обработки машинной команды процессором. Состоит из извлечения команды из кэш-памяти или из ОЗУ в регистр команд и подготовки её к декодированию

Смотрите также

fetch time; instruction decoder; instruction register; prefetcher

machine cycle         
машинный цикл; цикл работы станка-автомата
instruction cycle         

общая лексика

цикл исполнения команды, командный цикл

время, затрачиваемое центральным процессором на исполнение одной команды. Зависит от быстродействия ОЗУ, тактовой частоты, ширины шины данных и архитектуры процессора

командный цикл

Смотрите также

clock speed; CPU; execution time; instruction time; machine cycle

Определение

fetch-execute cycle
<architecture, processor> The sequence of actions that a central processing unit performs to execute each {machine code} instruction in a program. At the beginning of each cycle the CPU presents the value of the program counter on the address bus. The CPU then fetches the instruction from main memory (possibly via a cache and/or a pipeline) via the data bus into the instruction register. From the instruction register, the data forming the instruction is decoded and passed to the control unit which sends a sequence of control signals to the relevant {function units} of the CPU to perform the actions required by the instruction such as reading values from registers, passing them to the ALU to add them together and writing the result back to a register. The program counter is then incremented to address the next instruction and the cycle is repeated. The fetch-execute cycle was first proposed by {John von Neumann}. (1998-06-25)

Википедия

Instruction cycle

The instruction cycle (also known as the fetch–decode–execute cycle, or simply the fetch-execute cycle) is the cycle that the central processing unit (CPU) follows from boot-up until the computer has shut down in order to process instructions. It is composed of three main stages: the fetch stage, the decode stage, and the execute stage.

In simpler CPUs, the instruction cycle is executed sequentially, each instruction being processed before the next one is started. In most modern CPUs, the instruction cycles are instead executed concurrently, and often in parallel, through an instruction pipeline: the next instruction starts being processed before the previous instruction has finished, which is possible because the cycle is broken up into separate steps.